home *** CD-ROM | disk | FTP | other *** search
/ Softwarová Záchrana 3 / Softwarova-zachrana-3.bin / Xteq X-Setup / xqdcXSP-Setup-EN.exe / {app} / plugins / XenOverclockGeForce.xpl < prev    next >
Text File  |  2002-12-19  |  2KB  |  48 lines

  1. "FILE"="Xteq Systems X-Setup Plugin 6.0"
  2. "TYPE"="7"
  3. "COUNT"="2"
  4. "UIPATH"="Hardware\Video Cards\NVidia\GeForce"
  5. "NAME"="GeForce Overclocker OLD"
  6. "LANGUAGE"="VBScript"
  7. "TEXT 1"="Add GeForce Overclocking tab"
  8. "TEXT 2"="Remove GeForce Overclocking tab"
  9. "DESCRIPTION 1"="This adds the ability to overclock your NVidia GeForce/2/3/4/FX or Quadro/2/3/4/FX video card by adding a new Hardware Overclocking tab to your Display Properties under the NVidia GeForce tab to tweak GPU and/or Memory core frequencies for faster performance."
  10. "DESCRIPTION 2"="NOTE #1: For more info go to http://www.technologyvault.co.uk/geforce/faq.php"
  11. "DESCRIPTION 3"="NOTE #2: In most cases this is harmless. If experiencing ANY problems, simply reboot and set them back to original (default) settings. This may not work on all computer configurations."
  12. "DESCRIPTION 4"="NOTE #3: This works ONLY with older Detonator drivers prior to version 12.41. If you have this version (or a newer one), this does NOT work due to changes in the Detonator APIs."
  13. "DESCRIPTION 5"="WARNING: You MUST agree to do this at your own risk!"
  14. "VERSION"="1.3"
  15. "AUTHOR"="J. Scott Elblein"
  16. "COPYRIGHT"="All Rights Reserved. 2001"
  17. "CONTACTURL"="http://www.xenon-inc.com/"
  18. "COMMENT 1"="Used with permission"
  19. "WARNING"="1"
  20.  
  21.  
  22. 'Called when the Plugin is started
  23. SUB Plugin_Initialize
  24. call setuielement(1,true)
  25. END SUB
  26. 'Called when the Plugin should validate the Data the user has entered
  27. SUB Plugin_CheckData(ElementIndex)
  28. END SUB
  29. 'Called when the Plugin should apply the changes
  30. SUB Plugin_Apply(ElementIndex,ElementSubIndex)
  31. b = getuielement(1)
  32. if b = true then
  33. call RegWriteValue("HKLM\Software\NVIDIA Corporation\Global\NVTweak\CoolBits",3,2)
  34. MsgInformation("Overclocking tab added. Right-click on your Desktop, select Properties and click the NVidia GeForce tab to use it.")
  35. Restart
  36. else
  37. if regpathexists("HKLM\Software\NVIDIA Corporation\Global\NVTweak") then
  38. call RegDeletePath("HKLM\Software\NVIDIA Corporation\Global\NVTweak")
  39. MsgInformation("Overclocking tab removed.")
  40. Restart
  41. else
  42. msginformation("Nothing to Delete.")
  43. end if
  44. end if
  45. END SUB
  46. 'Called when the Plugin is about to be removed from memory
  47. SUB Plugin_Terminate
  48. END SUB